home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / crcset11.zip / VIRUSDAT.C < prev   
C/C++ Source or Header  |  1990-11-16  |  589b  |  27 lines

  1. /*
  2. VIRUSDAT.C
  3.  
  4. Kevin Dean
  5. Fairview Mall P.O. Box 55074
  6. 1800 Sheppard Avenue East
  7. Willowdale, Ontario
  8. CANADA    M2J 5B9
  9.  
  10. November 16, 1990
  11.  
  12.     This module defines the _viruscrc variable used by the anti-virus CRC
  13. check.  The default search string used by the CRCSET.EXE program is DEAN_CRC
  14. but may be changed by either modifying this file or defining another instance
  15. of _viruscrc in another file earlier in the program link.
  16.  
  17.     This code is public domain.
  18. */
  19.  
  20.  
  21. #include "viruscrc.h"
  22.  
  23.  
  24. const union filecrc _viruscrc =
  25.   {
  26.   'D', 'E', 'A', 'N', '_', 'C', 'R', 'C'
  27.   };